home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #75 (1993-12-29)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #75 (1993-12-29)(Amiga User Gruppe Einzugsgebiet 4000).adf / GoldED V0.97 Teil 2 / Auspacken next >
AmigaDOS Script File  |  1994-01-06  |  985b  |  66 lines

  1. .key Pfad,Inpvar
  2. failat 21
  3.  
  4.  
  5.  
  6. if not exists GED097_2.lha
  7.     echo
  8.     echo "Falsches Verzeichnis! Bitte Auspacken-Script im Originalverzeichnis"
  9.     echo "der A.U.G.E.-Diskette starten!"
  10.     echo
  11.     quit
  12. endif
  13.  
  14. echo
  15. echo
  16. echo "*n             A.U.G.E. Installationsscript GoldEd "
  17. echo "*n*n Soll mit dem Auspacken begonnen werden? " noline
  18. set >nil: InpVar ?
  19.  
  20. if $InpVar eq "ja"
  21.   skip Start
  22. endif
  23.  
  24. if $InpVar eq "j"
  25.   skip Start
  26. endif
  27.  
  28. if $InpVar eq "y"
  29.   skip Start
  30. endif
  31.  
  32. if $InpVar eq "yes"
  33.   skip Start
  34. endif
  35.  
  36. echo noline "*n*e[32m Auspacken beendet."
  37. quit
  38.  
  39. lab start
  40. lab Pfadfrage
  41. echo "*n*n Bitte Pfad angeben, wohin entpackt werden soll (Crtl-D für Ende):" noline
  42. set >nil: Pfad ?
  43.  
  44. if not exists $Pfad
  45.     echo "*n Pfadangabe nicht korrekt!"
  46.     skip back Pfadfrage
  47. endif
  48.  
  49.   :C/LHA x Ged097_2.lha $Pfad
  50.  
  51. if fail
  52.     echo "*n Auspacken ist fehlgeschlagen!"
  53.     quit
  54.  
  55. endif
  56.  
  57.  
  58. echo "Das wars, die Schublade Golded2 ist im Verzeichnis '$Pfad' zu finden!"
  59. echo
  60. wait 4 sec
  61. quit
  62.  
  63.  
  64.  
  65.  
  66.